home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
cscurcnt.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
837b
|
24 lines
/* RCSVER $Id: cscurcnt.sql,v 1.1 1999-02-25 15:04:50-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: cscurcnt.sql
* Date: 02/23/1999
* memo: Randy Wood
* Description: Create the cscurcnt table.
* Changes:
************************************************************************* */
CREATE TABLE cscurcnt
(
det_seq_num NUMBER(38)
CONSTRAINT ref1_cscurcnt REFERENCES mstrrec(det_seq_num),
farebox_glid NUMBER(38),
conv_date DATE, /* Date for this record */
currency_type NUMBER(38),
reset_value NUMBER(38),
reset_count NUMBER(38),
total_value NUMBER(38),
total_count NUMBER(38),
CONSTRAINT pk_cscurcnt PRIMARY KEY (det_seq_num, currency_type)
);